-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Add status for time-series source operator #127932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Pinging @elastic/es-storage-engine (Team:StorageEngine) |
| return new Status(this, tsidsLoaded, valuesLoaded); | ||
| } | ||
|
|
||
| public static class Status extends LuceneOperator.Status { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably deserves it's own little serialization test. I know it's kind of a pain, but it's helpful paranoia.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cool. good luck with CI
This change provides more detailed status information for the TimeSeriesSourceOperator.
```json
{
"processed_slices" : 1,
"processed_queries" : [
"*:*"
],
"processed_shards" : [
"test"
],
"process_nanos" : 13315249,
"process_time" : "13.3ms",
"slice_index" : 0,
"total_slices" : 1,
"pages_emitted" : 1,
"slice_min" : 0,
"slice_max" : 0,
"current" : 0,
"rows_emitted" : 6,
"partitioning_strategies" : {
"test" : "SHARD"
},
"tsid_loaded" : 1,
"values_loaded" : 18
}
```
This change provides more detailed status information for the TimeSeriesSourceOperator.
```json
{
"processed_slices" : 1,
"processed_queries" : [
"*:*"
],
"processed_shards" : [
"test"
],
"process_nanos" : 13315249,
"process_time" : "13.3ms",
"slice_index" : 0,
"total_slices" : 1,
"pages_emitted" : 1,
"slice_min" : 0,
"slice_max" : 0,
"current" : 0,
"rows_emitted" : 6,
"partitioning_strategies" : {
"test" : "SHARD"
},
"tsid_loaded" : 1,
"values_loaded" : 18
}
```
This change provides more detailed status information for the TimeSeriesSourceOperator.
{ "processed_slices" : 1, "processed_queries" : [ "*:*" ], "processed_shards" : [ "test" ], "process_nanos" : 13315249, "process_time" : "13.3ms", "slice_index" : 0, "total_slices" : 1, "pages_emitted" : 1, "slice_min" : 0, "slice_max" : 0, "current" : 0, "rows_emitted" : 6, "partitioning_strategies" : { "test" : "SHARD" }, "tsid_loaded" : 1, "values_loaded" : 18 }